home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
swags-z
/
sound.swg
/
0008_SBDEMO.PAS.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
510b
|
22 lines
{$M 16384,0,0}
Program Demo; { to demonstrate the SBVoice Unit }
{ Copyright 1991 Amit K. Mathur, Windsor, Ontario }
Uses SBVoice;
begin
if SBFound then begin
if paramcount=1 then begin
LoadVoice(ParamStr(1),0,0);
sb_Output(seg(SoundFile),ofs(SoundFile)+26);
Repeat
Write('Ha');
Until StatusWord=0;
end else
Writeln('Usage: DEMO [d:\path\]Filename.voc');
end else
Writeln('SoundBlaster Init Error. SoundBlaster v1.00 not Found.');
end.